blob: 2c7f964ed013282514d043d926265e93d558540b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
.Main {
margin: 65px auto;
}
.Image {
display: flex;
flex-direction: column;
align-items: center;
margin: 10px auto;
}
.Image img {
height: auto;
background-color: #272727;
padding: 5px;
}
.ImageContainer p {
text-align: center;
color: white;
font-family: "Atkinson Hyperlegible", serif;
font-size: 16px;
margin: 5px;
}
.NotFound {
text-align: center;
color: white;
font-family: "Atkinson Hyperlegible", serif;
font-size: 20px;
}
.DownloadMain {
text-align: center;
}
.DownloadMain button {
border: none;
outline: none;
border-radius: 5px;
padding: 5px;
font-family: "Atkinson Hyperlegible", serif;
font-size: 16px;
background-color: var(--light-green);
cursor: pointer;
}
.DownloadMain button:hover {
background-color: var(--pastel-red);
}
@media screen and (max-width: 768px) {
.ImageContainer img {
width: 95%;
align-items: center;
}
.Image {
width: 100%;
}
}
|